home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / muds / lpmud312.tar / lpmud312 / sent.h < prev    next >
C/C++ Source or Header  |  1991-10-31  |  343b  |  14 lines

  1. struct sentence {
  2.     char *verb;
  3.     struct object *ob;
  4.     char *function;
  5.     struct sentence *next;
  6.     unsigned short short_verb;    /* Only leading characters count */
  7.     unsigned char no_space;
  8. };
  9.  
  10. struct sentence *alloc_sentence();
  11.  
  12. void remove_sent PROT((struct object *, struct object *)),
  13.     free_sentence PROT((struct sentence *));
  14.